* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* HERO */
.about-gallery{
  padding: 90px 8%;
  background: #f8f8f8;
}

.about-gallery-header{
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-gallery-tag{
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.about-gallery-header h2{
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.about-gallery-header p{
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.about-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: #ddd;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img{
  transform: scale(1.08);
}

.gallery-item:hover::after{
  opacity: 1;
}

/* Layout variations */
.gallery-item.large{
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.medium{
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.small{
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.tall{
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.wide{
  grid-column: span 2;
  grid-row: span 1;
}

/* Tablet */
@media (max-width: 991px){
  .about-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small,
  .gallery-item.tall,
  .gallery-item.wide{
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.large{
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.wide{
    grid-column: span 2;
  }

  .about-gallery-header h2{
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .about-gallery{
    padding: 70px 5%;
  }

  .about-gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small,
  .gallery-item.tall,
  .gallery-item.wide{
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-gallery-header h2{
    font-size: 28px;
  }
}

/* ABOUT SECTION */

.about-section {
  padding: 80px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* STATS */

.about-stats {
  background: linear-gradient(135deg, #062c3f, #0b3c5d)#111;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #f4b400;
}

/* ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 28px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-container {
    gap: 30px;
  }

}










.about-alt-section {
  padding: 100px 20px;
  background: #f8f8f8;
}

.alt-container {
  max-width: 1100px;
  margin: auto;
}

.alt-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.alt-row.reverse {
  flex-direction: row-reverse;
}

.alt-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.alt-text {
  flex: 1;
}

.alt-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.alt-text p {
  color: #555;
  line-height: 1.7;
}

/* ---------- ANIMATION ---------- */

.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

  .alt-row,
  .alt-row.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
  }

  .alt-text h2 {
    font-size: 24px;
  }
}

















.image-slider-section {
  padding: 100px 20px;
  background: #f3a908;
}

.slider-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ARROWS */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.4);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* DOTS */

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .slide img {
    height: 300px;
  }

  .slider-btn {
    font-size: 20px;
    padding: 8px 14px;
  }
}







.trust-section {
  padding: 100px 20px;
  background: #ffffff;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-col {
  flex: 1;
  min-width: 300px;
}

.trust-col h2 {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.trust-col h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  transition: 0.3s ease;
}

.trust-list li:hover {
  transform: translateX(8px);
}

.icon {
  font-size: 22px;
}

@media (max-width: 768px) {

  .trust-container {
    flex-direction: column;
    gap: 50px;
  }

  .trust-col h2 {
    text-align: center;
  }

  .trust-col h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

}


.reviews-section {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 60px;
}

.reviews-container {
  max-width: 1000px;
  margin: auto;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.8s ease;
}

.review-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 40px;
}

.review-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f4b400;
}

.review-content {
  max-width: 500px;
  text-align: left;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-content h4 {
  font-weight: 500;
  color: #ccc;
}

/* ARROWS */

.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.review-btn:hover {
  background: rgba(255,255,255,0.3);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .review-card {
    flex-direction: column;
    text-align: center;
  }

  .review-content {
    text-align: center;
  }

}

/* Phone at bottom-left */
.floater.phone {
  bottom: 20px;
  left: 20px;
  background-color: #007BFF;
}

/* WhatsApp at bottom-right */
.floater.whatsapp {
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
}